home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / aureate_detection.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  68 lines

  1. #
  2. # Copyright (C) 2004 Tenable Network Security 
  3. #
  4. #
  5.  
  6. if(description)
  7. {
  8.  script_id(11994);
  9.  script_version("$Revision: 1.4 $");
  10.  
  11.  name["english"] = "AUREATE detection";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is using the AUREATE program.  
  17. You should ensure that:
  18. - the user intended to install AUREATE (it is sometimes silently installed)
  19. - the use of AUREATE matches your corporate mandates and security policies.
  20.  
  21. To remove this sort of software, you may wish to check out ad-aware or spybot. 
  22.  
  23. See also : http://www.safersite.com/pestinfo/a/aureate.asp
  24. Solution : Uninstall this software
  25. Risk factor : High";
  26.  
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "AUREATE detection";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  38.  family["english"] = "Windows";
  39.  script_family(english:family["english"]);
  40.  
  41.  script_dependencies("smb_registry_full_access.nasl");
  42.  script_require_keys("SMB/registry_full_access");
  43.  
  44.  script_require_ports(139, 445);
  45.  exit(0);
  46. }
  47.  
  48.  
  49. # start the script
  50. if ( ! get_kb_item("SMB/registry_full_access") ) exit(0);
  51.  
  52. path[0] = "software\aureate";
  53. path[1] = "clsid\{ebbfe27c-bdf0-11d2-bbe5-00609419f467}";
  54. path[2] = "netscape starting\clsid\{ebbfe288-bdf0-11d2-bbe5-00609419f467}";
  55. path[3] = "netscape starting\curver\stub.netscapestart.1";
  56. path[4] = "software\classes\anadscb.aadvb5";
  57.  
  58.  
  59.  
  60. include("smb_nt.inc");
  61.  
  62. for (i=0; path[i]; i++) {
  63.        val = registry_key_exists(key:path[i]);
  64.        if(val != NULL) {security_hole(kb_smb_transport()); exit(0); } 
  65. }
  66.  
  67.  
  68.